projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
716e993
)
* unexec.c [HPUX] (sbrk): This returns a void *.
author
Jim Blandy
<jimb@redhat.com>
Wed, 16 Jun 1993 21:42:25 +0000
(21:42 +0000)
committer
Jim Blandy
<jimb@redhat.com>
Wed, 16 Jun 1993 21:42:25 +0000
(21:42 +0000)
src/unexec.c
patch
|
blob
|
history
diff --git
a/src/unexec.c
b/src/unexec.c
index c07bc1a4be27af6be6c260b0a0e53173d570fb74..d14103f1dd5cfecc9a192e5008106fc190716341 100644
(file)
--- a/
src/unexec.c
+++ b/
src/unexec.c
@@
-207,11
+207,15
@@
static long data_scnptr;
#else /* not COFF */
+#ifdef HPUX
+extern void *sbrk ();
+#else
#ifdef __STDC__
extern void *sbrk ();
#else
extern char *sbrk ();
-#endif
+#endif /* __STDC__ */
+#endif /* HPUX */
#define SYMS_START ((long) N_SYMOFF (ohdr))